home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS26.ADF / SoundScape / Include / split.h < prev    next >
C/C++ Source or Header  |  1989-01-26  |  296b  |  18 lines

  1. /*    SPLIT.H        Splitter/Mapper structures
  2.  
  3.     (c) 1986    Todor Fay
  4.  
  5. */
  6.  
  7. struct Split {
  8.     struct Split *next;
  9.     short scale, shift, min, max, decscale;
  10.     unsigned char portin, portout, statusin, statusout;
  11. };
  12.  
  13. struct SplitState {
  14.     long length;
  15.     char name[40];
  16.     struct Split *splitlist;
  17. };
  18.